/*******************************************************************
 File:     math.h
 Purpose:  JFPatch library header file - things you can do with
           JFPatch /without/ a C compiler :-)
 Author:   Justin Fletcher
 Date:     04 Oct 1997
 ******************************************************************/

#ifndef __MATH_H
#define __MATH_H

/*********************************************** <c> Gerph *********
 Function:     sqrt
 Description:  Simple square root finder - not wonderful, but works!
 Parameters:   x = value to find root of
 Returns:      value of root
 ******************************************************************/
int sqrt(int x);

#endif
